5b214401fbd124c71ffa5d9f967ea60ca99d8e3c,mobile/src/main/java/me/calebjones/spacelaunchnow/ui/fragment/launches/NextLaunchFragment.java,NextLaunchFragment,showCaseView,#,129
Before Change
.setContentTitle("Launch Filtering")
.setContentText("Only receive notifications for launches that you care about.");
if (sharedPreference.isNightModeActive(context)) {
builder.setStyle(R.style.ShowCaseThemeDark).replaceEndButton(customButton).hideOnTouchOutside().build();
} else {
builder.setStyle(R.style.ShowCaseThemeLight).replaceEndButton(customButton).hideOnTouchOutside().build();
}
After Change
.setContentTitle("Launch Filtering")
.setContentText("Only receive notifications for launches that you care about.");
if (sharedPreference.isNightModeActive(context)) {
builder.setStyle(R.style.ShowCaseThemeDark).replaceEndButton(customButton).build();
} else {
builder.setStyle(R.style.ShowCaseThemeLight).replaceEndButton(customButton).build();
}